home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 6224 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.7 KB

  1. Path: erich.triumf.ca!bennett
  2. From: bennett@erich.triumf.ca (P.Bennett)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Printing to Printer
  5. Date: 22 Feb 1996 23:00 PST
  6. Organization: TRIUMF: Tri-University Meson Facility
  7. Distribution: world
  8. Message-ID: <22FEB199623005830@erich.triumf.ca>
  9. References: <4gj599$rbr@news.bu.edu>
  10. NNTP-Posting-Host: erich.triumf.ca
  11. News-Software: VAX/VMS VNEWS 1.50    
  12.  
  13. In article <4gj599$rbr@news.bu.edu>, rajman@bu.edu (Rajesh Keswani) writes...
  14. >I am currently trying to print to the printer with ofstream, etc...
  15. >It's is all going to the printer fine, but it is staying in the
  16. >printer's memory, and not ejecting the page... 
  17. >If I reset the printer, the page comes out... that isn't really what
  18. >I need!  
  19. >Can someone please tell me what to do to "end a printing session" so the 
  20. >pritner can do a form feed or something and print out the page?
  21.  
  22. Depends on your printer (and perhaps on your operating system and print
  23. manager as well...)
  24.  
  25. However:
  26.  
  27. Dot matrix printers often cannot print a single char - they must print a whole
  28. line at a time, so won't print til they get a CR/LF or similar indication that
  29. they have received a full line.
  30.  
  31. Lazer printers won't print til they have a full page, so you have to send a
  32. form feed character ('\f') after your text to make them print. (or perhaps
  33. something else if in graphics mode - consult the printer documentation)
  34.  
  35.  
  36.  
  37.  
  38. Peter Bennett VE7CEI                | Vessels shall be deemed to be in sight
  39. Internet: bennett@triumf.ca         | of one another only when one can be
  40. Packet: ve7cei@ve7kit.#vanc.bc.ca   | observed visually from the other
  41. TRIUMF, Vancouver, B.C., Canada     |                          ColRegs 3(k)
  42. GPS and NMEA info and programs: ftp://sundae.triumf.ca/pub/peter/index.html
  43.  
  44.  
  45.  
  46.